Represents an OData v4.0 collection response containing a list of entities with optional pagination metadata.
Provides strongly-typed access to collection data with count and next link information.
[JsonPropertyName("@odata.count")]public long ODataCount { get; set; }
Gets or sets the total number of entities in the collection, regardless of pagination.
This property is only populated when the $count query option is used.
Gets or sets the URL for retrieving the next page of results when server-side paging is enabled.
This property is null if there are no more pages available.